home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / pyshared / chardet / hebrewprober.py < prev    next >
Text File  |  2006-10-21  |  13KB  |  270 lines

  1. ######################## BEGIN LICENSE BLOCK ########################
  2. # The Original Code is Mozilla Universal charset detector code.
  3. #
  4. # The Initial Developer of the Original Code is
  5. #          Shy Shalom
  6. # Portions created by the Initial Developer are Copyright (C) 2005
  7. # the Initial Developer. All Rights Reserved.
  8. #
  9. # Contributor(s):
  10. #   Mark Pilgrim - port to Python
  11. #
  12. # This library is free software; you can redistribute it and/or
  13. # modify it under the terms of the GNU Lesser General Public
  14. # License as published by the Free Software Foundation; either
  15. # version 2.1 of the License, or (at your option) any later version.
  16. # This library is distributed in the hope that it will be useful,
  17. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  19. # Lesser General Public License for more details.
  20. # You should have received a copy of the GNU Lesser General Public
  21. # License along with this library; if not, write to the Free Software
  22. # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  23. # 02110-1301  USA
  24. ######################### END LICENSE BLOCK #########################
  25.  
  26. from charsetprober import CharSetProber
  27. import constants
  28.  
  29. # This prober doesn't actually recognize a language or a charset.
  30. # It is a helper prober for the use of the Hebrew model probers
  31.  
  32. ### General ideas of the Hebrew charset recognition ###
  33. #
  34. # Four main charsets exist in Hebrew:
  35. # "ISO-8859-8" - Visual Hebrew
  36. # "windows-1255" - Logical Hebrew 
  37. # "ISO-8859-8-I" - Logical Hebrew
  38. # "x-mac-hebrew" - ?? Logical Hebrew ??
  39. #
  40. # Both "ISO" charsets use a completely identical set of code points, whereas
  41. # "windows-1255" and "x-mac-hebrew" are two different proper supersets of 
  42. # these code points. windows-1255 defines additional characters in the range
  43. # 0x80-0x9F as some misc punctuation marks as well as some Hebrew-specific 
  44. # diacritics and additional 'Yiddish' ligature letters in the range 0xc0-0xd6.
  45. # x-mac-hebrew defines similar additional code points but with a different 
  46. # mapping.
  47. #
  48. # As far as an average Hebrew text with no diacritics is concerned, all four 
  49. # charsets are identical with respect to code points. Meaning that for the 
  50. # main Hebrew alphabet, all four map the same values to all 27 Hebrew letters 
  51. # (including final letters).
  52. #
  53. # The dominant difference between these charsets is their directionality.
  54. # "Visual" directionality means that the text is ordered as if the renderer is
  55. # not aware of a BIDI rendering algorithm. The renderer sees the text and 
  56. # draws it from left to right. The text itself when ordered naturally is read 
  57. # backwards. A buffer of Visual Hebrew generally looks like so:
  58. # "[last word of first line spelled backwards] [whole line ordered backwards
  59. # and spelled backwards] [first word of first line spelled backwards] 
  60. # [end of line] [last word of second line] ... etc' "
  61. # adding punctuation marks, numbers and English text to visual text is
  62. # naturally also "visual" and from left to right.
  63. # "Logical" directionality means the text is ordered "naturally" according to
  64. # the order it is read. It is the responsibility of the renderer to display 
  65. # the text from right to left. A BIDI algorithm is used to place general 
  66. # punctuation marks, numbers and English text in the text.
  67. #
  68. # Texts in x-mac-hebrew are almost impossible to find on the Internet. From 
  69. # what little evidence I could find, it seems that its general directionality
  70. # is Logical.
  71. #
  72. # To sum up all of the above, the Hebrew probing mechanism knows about two
  73. # charsets:
  74. # Visual Hebrew - "ISO-8859-8" - backwards text - Words and sentences are
  75. #    backwards while line order is natural. For charset recognition purposes
  76. #    the line order is unimportant (In fact, for this implementation, even 
  77. #    word order is unimportant).
  78. # Logical Hebrew - "windows-1255" - normal, naturally ordered text.
  79. #
  80. # "ISO-8859-8-I" is a subset of windows-1255 and doesn't need to be 
  81. #    specifically identified.
  82. # "x-mac-hebrew" is also identified as windows-1255. A text in x-mac-hebrew
  83. #    that contain special punctuation marks or diacritics is displayed with
  84. #    some unconverted characters showing as question marks. This problem might
  85. #    be corrected using another model prober for x-mac-hebrew. Due to the fact
  86. #    that x-mac-hebrew texts are so rare, writing another model prober isn't 
  87. #    worth the effort and performance hit.
  88. #
  89. #### The Prober ####
  90. #
  91. # The prober is divided between two SBCharSetProbers and a HebrewProber,
  92. # all of which are managed, created, fed data, inquired and deleted by the
  93. # SBCSGroupProber. The two SBCharSetProbers identify that the text is in
  94. # fact some kind of Hebrew, Logical or Visual. The final decision about which
  95. # one is it is made by the HebrewProber by combining final-letter scores
  96. # with the scores of the two SBCharSetProbers to produce a final answer.
  97. #
  98. # The SBCSGroupProber is responsible for stripping the original text of HTML
  99. # tags, English characters, numbers, low-ASCII punctuation characters, spaces
  100. # and new lines. It reduces any sequence of such characters to a single space.
  101. # The buffer fed to each prober in the SBCS group prober is pure text in
  102. # high-ASCII.
  103. # The two SBCharSetProbers (model probers) share the same language model:
  104. # Win1255Model.
  105. # The first SBCharSetProber uses the model normally as any other
  106. # SBCharSetProber does, to recognize windows-1255, upon which this model was
  107. # built. The second SBCharSetProber is told to make the pair-of-letter
  108. # lookup in the language model backwards. This in practice exactly simulates
  109. # a visual Hebrew model using the windows-1255 logical Hebrew model.
  110. #
  111. # The HebrewProber is not using any language model. All it does is look for
  112. # final-letter evidence suggesting the text is either logical Hebrew or visual
  113. # Hebrew. Disjointed from the model probers, the results of the HebrewProber
  114. # alone are meaningless. HebrewProber always returns 0.00 as confidence
  115. # since it never identifies a charset by itself. Instead, the pointer to the
  116. # HebrewProber is passed to the model probers as a helper "Name Prober".
  117. # When the Group prober receives a positive identification from any prober,
  118. # it asks for the name of the charset identified. If the prober queried is a
  119. # Hebrew model prober, the model prober forwards the call to the
  120. # HebrewProber to make the final decision. In the HebrewProber, the
  121. # decision is made according to the final-letters scores maintained and Both
  122. # model probers scores. The answer is returned in the form of the name of the
  123. # charset identified, either "windows-1255" or "ISO-8859-8".
  124.  
  125. # windows-1255 / ISO-8859-8 code points of interest
  126. FINAL_KAF = '\xea'
  127. NORMAL_KAF = '\xeb'
  128. FINAL_MEM = '\xed'
  129. NORMAL_MEM = '\xee'
  130. FINAL_NUN = '\xef'
  131. NORMAL_NUN = '\xf0'
  132. FINAL_PE = '\xf3'
  133. NORMAL_PE = '\xf4'
  134. FINAL_TSADI = '\xf5'
  135. NORMAL_TSADI = '\xf6'
  136.  
  137. # Minimum Visual vs Logical final letter score difference.
  138. # If the difference is below this, don't rely solely on the final letter score distance.
  139. MIN_FINAL_CHAR_DISTANCE = 5
  140.  
  141. # Minimum Visual vs Logical model score difference.
  142. # If the difference is below this, don't rely at all on the model score distance.
  143. MIN_MODEL_DISTANCE = 0.01
  144.  
  145. VISUAL_HEBREW_NAME = "ISO-8859-8"
  146. LOGICAL_HEBREW_NAME = "windows-1255"
  147.  
  148. class HebrewProber(CharSetProber):
  149.     def __init__(self):
  150.         CharSetProber.__init__(self)
  151.         self._mLogicalProber = None
  152.         self._mVisualProber = None
  153.         self.reset()
  154.  
  155.     def reset(self):
  156.         self._mFinalCharLogicalScore = 0
  157.         self._mFinalCharVisualScore = 0
  158.         # The two last characters seen in the previous buffer,
  159.         # mPrev and mBeforePrev are initialized to space in order to simulate a word 
  160.         # delimiter at the beginning of the data
  161.         self._mPrev = ' '
  162.         self._mBeforePrev = ' '
  163.         # These probers are owned by the group prober.
  164.         
  165.     def set_model_probers(self, logicalProber, visualProber):
  166.         self._mLogicalProber = logicalProber
  167.         self._mVisualProber = visualProber
  168.  
  169.     def is_final(self, c):
  170.         return c in [FINAL_KAF, FINAL_MEM, FINAL_NUN, FINAL_PE, FINAL_TSADI]
  171.  
  172.     def is_non_final(self, c):
  173.         # The normal Tsadi is not a good Non-Final letter due to words like 
  174.         # 'lechotet' (to chat) containing an apostrophe after the tsadi. This 
  175.         # apostrophe is converted to a space in FilterWithoutEnglishLetters causing 
  176.         # the Non-Final tsadi to appear at an end of a word even though this is not 
  177.         # the case in the original text.
  178.         # The letters Pe and Kaf rarely display a related behavior of not being a 
  179.         # good Non-Final letter. Words like 'Pop', 'Winamp' and 'Mubarak' for 
  180.         # example legally end with a Non-Final Pe or Kaf. However, the benefit of 
  181.         # these letters as Non-Final letters outweighs the damage since these words 
  182.         # are quite rare.
  183.         return c in [NORMAL_KAF, NORMAL_MEM, NORMAL_NUN, NORMAL_PE]
  184.     
  185.     def feed(self, aBuf):
  186.         # Final letter analysis for logical-visual decision.
  187.         # Look for evidence that the received buffer is either logical Hebrew or 
  188.         # visual Hebrew.
  189.         # The following cases are checked:
  190.         # 1) A word longer than 1 letter, ending with a final letter. This is an 
  191.         #    indication that the text is laid out "naturally" since the final letter 
  192.         #    really appears at the end. +1 for logical score.
  193.         # 2) A word longer than 1 letter, ending with a Non-Final letter. In normal
  194.         #    Hebrew, words ending with Kaf, Mem, Nun, Pe or Tsadi, should not end with
  195.         #    the Non-Final form of that letter. Exceptions to this rule are mentioned
  196.         #    above in isNonFinal(). This is an indication that the text is laid out
  197.         #    backwards. +1 for visual score
  198.         # 3) A word longer than 1 letter, starting with a final letter. Final letters 
  199.         #    should not appear at the beginning of a word. This is an indication that 
  200.         #    the text is laid out backwards. +1 for visual score.
  201.         # 
  202.         # The visual score and logical score are accumulated throughout the text and 
  203.         # are finally checked against each other in GetCharSetName().
  204.         # No checking for final letters in the middle of words is done since that case
  205.         # is not an indication for either Logical or Visual text.
  206.         # 
  207.         # We automatically filter out all 7-bit characters (replace them with spaces)
  208.         # so the word boundary detection works properly. [MAP]
  209.  
  210.         if self.get_state() == constants.eNotMe:
  211.             # Both model probers say it's not them. No reason to continue.
  212.             return constants.eNotMe
  213.  
  214.         aBuf = self.filter_high_bit_only(aBuf)
  215.         
  216.         for cur in aBuf:
  217.             if cur == ' ':
  218.                 # We stand on a space - a word just ended
  219.                 if self._mBeforePrev != ' ':
  220.                     # next-to-last char was not a space so self._mPrev is not a 1 letter word
  221.                     if self.is_final(self._mPrev):
  222.                         # case (1) [-2:not space][-1:final letter][cur:space]
  223.                         self._mFinalCharLogicalScore += 1
  224.                     elif self.is_non_final(self._mPrev):
  225.                         # case (2) [-2:not space][-1:Non-Final letter][cur:space]
  226.                         self._mFinalCharVisualScore += 1
  227.             else:
  228.                 # Not standing on a space
  229.                 if (self._mBeforePrev == ' ') and (self.is_final(self._mPrev)) and (cur != ' '):
  230.                     # case (3) [-2:space][-1:final letter][cur:not space]
  231.                     self._mFinalCharVisualScore += 1
  232.             self._mBeforePrev = self._mPrev
  233.             self._mPrev = cur
  234.  
  235.         # Forever detecting, till the end or until both model probers return eNotMe (handled above)
  236.         return constants.eDetecting
  237.  
  238.     def get_charset_name(self):
  239.         # Make the decision: is it Logical or Visual?
  240.         # If the final letter score distance is dominant enough, rely on it.
  241.         finalsub = self._mFinalCharLogicalScore - self._mFinalCharVisualScore
  242.         if finalsub >= MIN_FINAL_CHAR_DISTANCE:
  243.             return LOGICAL_HEBREW_NAME
  244.         if finalsub <= -MIN_FINAL_CHAR_DISTANCE:
  245.             return VISUAL_HEBREW_NAME
  246.  
  247.         # It's not dominant enough, try to rely on the model scores instead.
  248.         modelsub = self._mLogicalProber.get_confidence() - self._mVisualProber.get_confidence()
  249.         if modelsub > MIN_MODEL_DISTANCE:
  250.             return LOGICAL_HEBREW_NAME
  251.         if modelsub < -MIN_MODEL_DISTANCE:
  252.             return VISUAL_HEBREW_NAME
  253.  
  254.         # Still no good, back to final letter distance, maybe it'll save the day.
  255.         if finalsub < 0.0:
  256.             return VISUAL_HEBREW_NAME
  257.  
  258.         # (finalsub > 0 - Logical) or (don't know what to do) default to Logical.
  259.         return LOGICAL_HEBREW_NAME
  260.  
  261.     def get_state(self):
  262.         # Remain active as long as any of the model probers are active.
  263.         if (self._mLogicalProber.get_state() == constants.eNotMe) and \
  264.            (self._mVisualProber.get_state() == constants.eNotMe):
  265.             return constants.eNotMe
  266.         return constants.eDetecting
  267.